1 2 3 4 5 6 7 8 9 10 11 12package com.springexample.common.service; import com.springexample.common.model.Entity.Post; import java.util.List; public interface PostService { void savePost(Post post); Post getById(Long id); List<Post> findAll(); }
1 2 3 4 5 6 7 8 9 10 11 12
package com.springexample.common.service; import com.springexample.common.model.Entity.Post; import java.util.List; public interface PostService { void savePost(Post post); Post getById(Long id); List<Post> findAll(); }